github.com/klauspost/compress/flate.decompressor.bits (field)

13 uses

	github.com/klauspost/compress/flate (current package)
		inflate.go#L319: 	bits     *[maxNumLit + maxNumDist]int
		inflate.go#L522: 			f.bits[i] = x
		inflate.go#L542: 			b = f.bits[i-1]
		inflate.go#L570: 			f.bits[i] = b
		inflate.go#L575: 	if !f.h1.init(f.bits[0:nlit]) || !f.h2.init(f.bits[nlit:nlit+ndist]) {
		inflate.go#L586: 	if f.h1.maxRead < f.bits[endBlockMarker] {
		inflate.go#L587: 		f.h1.maxRead = f.bits[endBlockMarker]
		inflate.go#L815: 		bits:     f.bits,
		inflate.go#L831: 		bits:     f.bits,
		inflate.go#L918: 	f.bits = new([maxNumLit + maxNumDist]int)